Python v3.7 HowTos:
Create a list of empty dictionaries
Insert a given string at the beginning of all items
L = [1, 2, 3, 4, 5] print(*L)
Output:
1 2 3 4 5
See also
https://www.w3resource.com/python-exercises/list/python-data-type-list-exercise-62.php